home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / fontutil.6 / fontutil / fontutils-0.6 / pk / pk_opcodes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-27  |  1.3 KB  |  42 lines

  1. /* pk_opcodes.h: symbolic names for some of the GF commands and special
  2.    values.
  3.  
  4. Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef PK_OPCODES_H
  21. #define PK_OPCODES_H
  22.  
  23. /* Some of the command bytes.  */
  24. #define PK_PRE 247
  25. #define PK_ID 89
  26. #define PK_XXX1 240
  27. #define PK_XXX4 243
  28. #define PK_YYY 244
  29. #define PK_POST 245
  30. #define PK_NO_OP 246
  31.  
  32. /* If the `dyn_f' value for a character is this, the bitmap is
  33.    represented as a bitmap, instead of being packed.  */
  34. #define PK_BITMAP_FLAG 14
  35.  
  36. /* These values are for the first nybble in packed numbers.  */
  37. #define LONG_RUN_COUNT_FLAG 0
  38. #define REPEAT_COUNT_FLAG 14
  39. #define REPEAT_ONE 15
  40.  
  41. #endif /* not PK_OPCODES_H */
  42.